home *** CD-ROM | disk | FTP | other *** search
/ Clickx 35 / Clickx 35.iso / assets / software / Corel PSP11 / Data1.cab / _6E17471F323B487A90DB3E033676AE5C < prev    next >
Encoding:
Text File  |  2006-08-04  |  469 b   |  23 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'',
  6.         'Copyright': u'',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro 10',
  9.         'Host Version': u'10.00'
  10.         }
  11.  
  12. def Preset_InfraredFilm():
  13.     return {
  14.         'Flare': 0, 
  15.         'Grain': 0, 
  16.         'Strength': 70
  17.         }
  18.  
  19. def Do(Environment):
  20.     # InfraredFilm
  21.     App.Do( Environment, 'InfraredFilm',         Preset_InfraredFilm())
  22.  
  23.